home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / netinet / tcp_debug.h < prev    next >
C/C++ Source or Header  |  1988-06-29  |  1KB  |  44 lines

  1. /*
  2.  * Copyright (c) 1982, 1986 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms are permitted
  6.  * provided that this notice is preserved and that due credit is given
  7.  * to the University of California at Berkeley. The name of the University
  8.  * may not be used to endorse or promote products derived from this
  9.  * software without specific prior written permission. This software
  10.  * is provided ``as is'' without express or implied warranty.
  11.  *
  12.  *    @(#)tcp_debug.h    7.2 (Berkeley) 12/7/87
  13.  */
  14.  
  15. #ifndef _TCP_DEBUG
  16. #define _TCP_DEBUG
  17.  
  18. struct    tcp_debug {
  19.     n_time    td_time;
  20.     short    td_act;
  21.     short    td_ostate;
  22.     caddr_t    td_tcb;
  23.     struct    tcpiphdr td_ti;
  24.     short    td_req;
  25.     struct    tcpcb td_cb;
  26. };
  27.  
  28. #define    TA_INPUT     0
  29. #define    TA_OUTPUT    1
  30. #define    TA_USER        2
  31. #define    TA_RESPOND    3
  32. #define    TA_DROP        4
  33.  
  34. #ifdef TANAMES
  35. char    *tanames[] =
  36.     { "input", "output", "user", "respond", "drop" };
  37. #endif
  38.  
  39. #define    TCP_NDEBUG 100
  40. struct    tcp_debug tcp_debug[TCP_NDEBUG];
  41. int    tcp_debx;
  42.  
  43. #endif _TCP_DEBUG
  44.